home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960209-19960425 / 000231_news@columbia.edu _Tue Mar 19 16:56:39 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with ESMTP id QAA17667 for <kermit.misc@watsun>; Tue, 19 Mar 1996 16:56:38 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.3/8.7.3) id QAA15845 for kermit.misc@watsun; Tue, 19 Mar 1996 16:56:35 -0500 (EST)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: Problem with HP-48 and Kermit
  8. Date: 19 Mar 1996 21:56:26 GMT
  9. Organization: Columbia University
  10. Lines: 27
  11. Message-ID: <4inaia$ff1@apakabar.cc.columbia.edu>
  12. References: <4imua9$7rf@news.internetmci.com>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <4imua9$7rf@news.internetmci.com>,
  16. <0002016821@mcimail.com> wrote:
  17. : I am having difficulty sending a file larger than about 12k
  18. : to my HP-48 using kermit.  Any suggestions on why this might 
  19. : be happening ?
  20. Using which Kermit?  Which version?
  21.  
  22. If it is MS-DOS Kermit (current version 3.14), you will need to
  23. configure it specially for connection to the HP-48.  First of all,
  24. the HP-48 doesn't support any kind of flow control, so tell Kermit to:
  25.  
  26.   SET FLOW NONE
  27.  
  28. Secondly, the HP-48 serial port is unable to receive characters for a
  29. fraction of a second when it is switching from sending to receiving.
  30. But since it does not support flow control, it doesn't have any way of
  31. telling your PC not to send during that time.  So you have to tell Kermit
  32. to pause after each packet.  Try one or both of these:
  33.  
  34.   set send pause 1000
  35.   set receive pause 1000
  36.  
  37. The number is milliseconds, so 1000 of them = 1 second.  You might be able
  38. to make it smaller, or you might have to make it bigger.
  39.  
  40. - Frank